From bb6057bfb709786bcc7c8dea71ee37f6fa53ec5e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 16 Jul 2014 21:08:27 -0400 Subject: [PATCH] GtkStackSwitcher: Simplify setting of .needs-attention Always add the .needs-attention style class, even if the button is active. Themes can already avoid showing anything in this case. --- gtk/gtkstackswitcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkstackswitcher.c b/gtk/gtkstackswitcher.c index 418f2fe8ef..35d82b8be2 100644 --- a/gtk/gtkstackswitcher.c +++ b/gtk/gtkstackswitcher.c @@ -156,7 +156,7 @@ update_needs_attention (GtkWidget *widget, GtkWidget *button, gpointer data) NULL); context = gtk_widget_get_style_context (button); - if (needs_attention && !gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (button))) + if (needs_attention) gtk_style_context_add_class (context, GTK_STYLE_CLASS_NEEDS_ATTENTION); else gtk_style_context_remove_class (context, GTK_STYLE_CLASS_NEEDS_ATTENTION); -- 2.30.2